Unparent the child widget before tearing down its
stack page. This is necessary so a11y can still access
the stack page accessible to emit change notification
when it learns that the child is removed.
if (child_info == NULL)
return;
- priv->children = g_list_remove (priv->children, child_info);
-
g_signal_handlers_disconnect_by_func (child,
stack_child_visibility_notify_cb,
stack);
was_visible = gtk_widget_get_visible (child);
- g_clear_object (&child_info->widget);
-
if (priv->visible_child == child_info)
{
if (in_dispose)
gtk_widget_unparent (child);
+ g_clear_object (&child_info->widget);
+
+ priv->children = g_list_remove (priv->children, child_info);
+
g_object_unref (child_info);
if (!in_dispose &&